home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / tutorials / geometer / Theorems / constructions / trisect.T < prev   
Encoding:
Text File  |  1994-08-02  |  920 b   |  21 lines

  1. .geometry "version 0.1";
  2. v1 = .free(-0.633152, -0.317935, .green, "1");
  3. v2 = .free(0.505435, -0.315217, .green, "2");
  4. v3 = .free(0.5, 0.241848, .green, "3");
  5. v4 = .v.vvmid(v3, v1, .green, .plus);
  6. v5 = .v.vvmid(v4, v1, .green, .plus);
  7. v6 = .v.vvmid(v4, v3, .green, .plus);
  8. l1 = .l.vv(v6, v2, .invisible, .longline);
  9. l2 = .l.vv(v1, v2, .green);
  10. l3 = .l.vlpar(v4, l1, .invisible, .longline);
  11. l4 = .l.vlpar(v5, l3, .invisible, .longline);
  12. v7 = .v.ll(l3, l2, .green, .plus);
  13. v8 = .v.ll(l4, l2, .green, .plus);
  14. .text("Trisection of a line:");
  15. .text("");
  16. .text("This example shows the construction of the trisection of a line.");
  17. .text("The segment 13 is bisected twice, and a line constructed from the");
  18. .text("third point to the endpoint 2.  Parallel lines are constructed that");
  19. .text("divide the line 12 into 3 equal parts.  The same mechanism can be");
  20. .text("used to divide a segment into any number of equal parts.");
  21.